-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update testing-how-to.md #2839
Update testing-how-to.md #2839
Conversation
✅ Deploy Preview for replicated-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for replicated-docs-upgrade ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
docs/vendor/testing-how-to.md
Outdated
@@ -42,9 +42,12 @@ To create a cluster using the Replicated CLI: | |||
Where: | |||
* `NAME` is any name for the cluster. If `--name` is excluded, a name is automatically generated for the cluster. | |||
* `K8S_DISTRO` is the Kubernetes distribution for the cluster. | |||
* `K8S_VERSION` is the Kubernetes version for the cluster. | |||
* `K8S_VERSION` is the Kubernetes version for the cluster if creating a standard Cloud or VM based cluster. | |||
* When creating an Embedded Cluster type using `cluster create`, use of `--version` is optional, and the value passed should be the `Channel release sequence` value if not using "latest" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this going to result in people actually trying --version latest
for EC? Which will not work, as it should be a channel sequence number.
@@ -267,7 +267,7 @@ Compatibility Matrix supports creating [kURL](https://kurl.sh) clusters. | |||
</tr> | |||
<tr> | |||
<th>Supported kURL Versions</th> | |||
<td>Any promoted kURL installer. For an installer version other than "latest", you can find the ID for previously promoted installers on the **Channels > kURL Installer History** page in the Vendor Portal. For more information about viewing the history of kURL installers promoted to a channel, see [Installer History](/vendor/installer-history).</td> | |||
<td>Any promoted kURL installer. Version is optional. For an installer version other than "latest", you can find the ID for previously promoted installers on the **Channels > kURL Installer History** page in the Vendor Portal. For more information about viewing the history of kURL installers promoted to a channel, see [Installer History](/vendor/installer-history).</td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we clarify it needs to be the slug, and not the sequence number for kURL?
@@ -37,14 +37,17 @@ To create a cluster using the Replicated CLI: | |||
1. Run the following command to create a cluster: | |||
|
|||
``` | |||
replicated cluster create --name NAME --distribution K8S_DISTRO --version K8S_VERSION --disk DISK_SIZE --instance-type INSTANCE_TYPE | |||
replicated cluster create --name NAME --distribution K8S_DISTRO --version K8S_VERSION --disk DISK_SIZE --instance-type INSTANCE_TYPE [--license-id LICENSE_ID] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ wrapped in brackets to indicate optionality
No description provided.